Method: Async::IO::Stream#<<

Defined in:
lib/async/io/stream.rb

#<<(string) ⇒ Object

Writes string to the stream and returns self.



183
184
185
186
187
# File 'lib/async/io/stream.rb', line 183

def <<(string)
	write(string)
	
	return self
end